time.Time.ext (field)
28 uses
time (current package)
format.go#L532: m2 := uint64(t.ext)
format.go#L534: if t.ext < 0 {
time.go#L142: ext int64
time.go#L174: return t.ext
time.go#L195: sum := t.ext + d
time.go#L196: if (sum > t.ext) == (d > 0) {
time.go#L197: t.ext = sum
time.go#L199: t.ext = 1<<63 - 1
time.go#L201: t.ext = -(1<<63 - 1)
time.go#L217: t.ext = t.sec()
time.go#L228: sec := t.ext
time.go#L234: t.ext = m
time.go#L246: return t.ext
time.go#L252: return t.ext > u.ext
time.go#L262: return t.ext < u.ext
time.go#L274: tc, uc = t.ext, u.ext
time.go#L297: return t.ext == u.ext
time.go#L869: te := t.ext + int64(d)
time.go#L870: if d < 0 && te > t.ext || d > 0 && te < t.ext {
time.go#L874: t.ext = te
time.go#L886: te := t.ext
time.go#L887: ue := u.ext
time.go#L1312: t.ext = sec
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |